home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-12-26 | 4.2 KB | 148 lines | [TEXT/EDIT] |
- CLEAR; clear memory
- LIST "6" ; when FSP is run, list as it runs & show memory
- ***
- DEFINEMACRO "PROCESS" ; Define a Macro that will save some typing
- CLEAR
- LOAD "@1"
- PURGE
- CHECKPATH/DELETE "HD"
- PURGE
- SAVE "@1"
- ENDMACRO
- ***
- *
- PROCESS "HD:Sections:NEW files" ; Do the Macro "process" as defined
- MOVE "HD:Files:NEW files Folder" ; moves files to the ...New files Folder
- PROCESS "HD:Sections:NEW files" ; Do the Macro in case path changed
- SAVE "HD:Sections:BU NEW files" ; Save a backup of the file section
- *
- PROCESS "HD:Sections:LIBRARY files"
- MOVE "HD:Files:LIBRARY files Folder"
- PROCESS "HD:Sections:LIBRARY files"
- SAVE "HD:Sections:BU LIBRARY files"
- *
- PROCESS "HD:Sections:APPLE files"
- MOVE "HD:Files:APPLE files Folder"
- PROCESS "HD:Sections:APPLE files"
- SAVE "HD:Sections:BU APPLE files"
- *
- PROCESS "HD:Sections:ART files"
- MOVE "HD:Files:ART files Folder"
- PROCESS "HD:Sections:ART files"
- SAVE "HD:Sections:BU ART files"
- *
- PROCESS "HD:Sections:COMM files"
- MOVE "HD:Files:COMM files Folder"
- PROCESS "HD:Sections:COMM files"
- SAVE "HD:Sections:BU COMM files"
- *
- PROCESS "HD:Sections:INFO files"
- MOVE "HD:Files:INFO files Folder"
- PROCESS "HD:Sections:INFO files"
- SAVE "HD:Sections:BU INFO files"
- *
- PROCESS "HD:Sections:DA & FKEY files"
- MOVE "HD:Files:DA & FKEY files Folder"
- PROCESS "HD:Sections:DA & FKEY files"
- SAVE "HD:Sections:BU DA & FKEY files"
- *
- PROCESS "HD:Sections:FONT files"
- MOVE "HD:Files:FONT files Folder"
- PROCESS "HD:Sections:FONT files"
- SAVE "HD:Sections:BU FONT files"
- *
- PROCESS "HD:Sections:GAME files"
- MOVE "HD:Files:GAMES files Folder"
- PROCESS "HD:Sections:GAME files"
- SAVE "HD:Sections:BU GAMES files"
- *
- PROCESS "HD:Sections:INIT & CDEV files"
- MOVE "HD:Files:INIT & CDEV files Folder"
- PROCESS "HD:Sections:INIT & CDEV files"
- SAVE "HD:Sections:BU INIT & CDEV files"
- *
- PROCESS "HD:Sections:SOUND files"
- MOVE "HD:Files:SOUND files Folder"
- PROCESS "HD:Sections:SOUND files"
- SAVE "HD:Sections:BU SOUND files"
- *
- PROCESS "HD:Sections:STACK files"
- MOVE "HD:Files:STACK files Folder"
- PROCESS "HD:Sections:STACK files"
- SAVE "HD:Sections:BU STACK files"
- *
- PROCESS "HD:Sections:TOOL files"
- MOVE "HD:Files:TOOL files Folder"
- PROCESS "HD:Sections:TOOL files"
- SAVE "HD:Sections:BU TOOL files"
- *
- PROCESS "HD:Sections:SYSOP files"
- MOVE "HD:Files:SYSOP files Folder"
- PROCESS "HD:Sections:SYSOP files"
- SAVE "HD:Sections:BU SYSOP files"
- ***
- *** This creates a text listing of all files
- CLEAR
- ADD "HD:Sections:APPLE files"
- ADD "HD:Sections:ART files"
- ADD "HD:Sections:COMM files"
- ADD "HD:Sections:INFO files"
- ADD "HD:Sections:DA & FKEY files"
- ADD "HD:Sections:FONT files"
- ADD "HD:Sections:GAME files"
- ADD "HD:Sections:INIT & CDEV files"
- ADD "HD:Sections:SOUND files"
- ADD "HD:Sections:STACK files"
- ADD "HD:Sections:TOOL files"
- ADD "HD:Sections:SYSOP files"
- SORT/DATE
- FORMAT "CR:COL:3+'Title:'+TI+COL:30+'Times Downloaded:'+DL:CR"
- FORMAT "+COL:4+'Size:'+SIZEK+COL:35+'Uploaded by:'+UPL:CR"
- FORMAT "+COL:4+'Date:'+DA+COL:41+'Where:'+SE:CR+0+DESCA"
- SAVETEXT/FORMAT "HD:BBS:ALL FILES"
- ***
- ***This creates a text listing of all files added within the last 10
- ***days
- CLEAR
- ADD "HD:Sections:APPLE files"
- ADD "HD:Sections:ART files"
- ADD "HD:Sections:COMM files"
- ADD "HD:Sections:INFO files"
- ADD "HD:Sections:DA & FKEY files"
- ADD "HD:Sections:FONT files"
- ADD "HD:Sections:GAME files"
- ADD "HD:Sections:INIT & CDEV files"
- ADD "HD:Sections:SOUND files"
- ADD "HD:Sections:STACK files"
- ADD "HD:Sections:TOOL files"
- ADD "HD:Sections:SYSOP files"
- SORT/DATE
- DELETE/AGE "10"
- PURGE
- FORMAT "CR:COL:3+'Title:'+TI+COL:30+'Times Downloaded:'+DL:CR"
- FORMAT "+COL:4+'Size:'+SIZEK+COL:35+'Uploaded by:'+UPL:CR"
- FORMAT "+COL:4+'Date:'+DA+COL:41+'Where:'+SE:CR+0+DESCA"
- SAVETEXT/FORMAT "HD:BBS:NEW FILES"
- ***
- *** This creates a text listing of all files, sorted by the times the
- ***file was downloaded
- CLEAR
- ADD "HD:Sections:APPLE files"
- ADD "HD:Sections:ART files"
- ADD "HD:Sections:COMM files"
- ADD "HD:Sections:INFO files"
- ADD "HD:Sections:DA & FKEY files"
- ADD "HD:Sections:FONT files"
- ADD "HD:Sections:GAME files"
- ADD "HD:Sections:INIT & CDEV files"
- ADD "HD:Sections:SOUND files"
- ADD "HD:Sections:STACK files"
- ADD "HD:Sections:TOOL files"
- ADD "HD:Sections:SYSOP files"
- SORT/DLCNT
- PURGE
- FORMAT "CR:0+'Title:'+TI:CR+0+'Downloads:'+DL:CR+0+'Uploaded by:'+UPL"
- SAVETEXT/FORMAT "HD:BBS:FILES BY DL"
- ***
- LAUNCH "HD:BBS:Red Ryder Host" ; launch Red Ryder Host
-